home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 May / EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso / ghost / gs403src_gs.lha / gs4.03 / gsccolor.h < prev    next >
C/C++ Source or Header  |  1994-07-28  |  2KB  |  47 lines

  1. /* Copyright (C) 1993 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gsccolor.h */
  20. /* Client color structure definition */
  21.  
  22. #ifndef gsccolor_INCLUDED
  23. #  define gsccolor_INCLUDED
  24.  
  25. #include "gsstruct.h"            /* for extern_st */
  26.  
  27. /* Pattern instance, usable in color. */
  28. typedef struct gs_pattern_instance_s gs_pattern_instance;
  29.  
  30. /* Paint (non-pattern) colors (Device, CIE, Indexed, Separation) */
  31. typedef struct gs_paint_color_s {
  32.     float values[4];
  33. } gs_paint_color;
  34.  
  35. /* General colors */
  36. typedef struct gs_client_color_s {
  37.     gs_paint_color paint;        /* also color for uncolored pattern */
  38.     gs_pattern_instance *pattern;
  39. } gs_client_color;
  40. extern_st(st_client_color);
  41. #define public_st_client_color() /* in gscolor.c */\
  42.   gs_public_st_ptrs1(st_client_color, gs_client_color, "gs_client_color",\
  43.     client_color_enum_ptrs, client_color_reloc_ptrs, pattern)
  44. #define st_client_color_max_ptrs 1
  45.  
  46. #endif                    /* gsccolor_INCLUDED */
  47.